home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / tcp_seq.h,v < prev    next >
Text File  |  1988-06-29  |  2KB  |  85 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.34;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.31;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)tcp_seq.h    7.2 (Berkeley) 12/7/87
  40.  */
  41.  
  42. #ifndef _TCP_SEQ
  43. #define _TCP_SEQ
  44.  
  45. /*
  46.  * TCP sequence numbers are 32 bit integers operated
  47.  * on with modular arithmetic.  These macros can be
  48.  * used to compare such integers.
  49.  */
  50. #define    SEQ_LT(a,b)    ((int)((a)-(b)) < 0)
  51. #define    SEQ_LEQ(a,b)    ((int)((a)-(b)) <= 0)
  52. #define    SEQ_GT(a,b)    ((int)((a)-(b)) > 0)
  53. #define    SEQ_GEQ(a,b)    ((int)((a)-(b)) >= 0)
  54.  
  55. /*
  56.  * Macros to initialize tcp sequence numbers for
  57.  * send and receive from initial send and receive
  58.  * sequence numbers.
  59.  */
  60. #define    tcp_rcvseqinit(tp) \
  61.     (tp)->rcv_adv = (tp)->rcv_nxt = (tp)->irs + 1
  62.  
  63. #define    tcp_sendseqinit(tp) \
  64.     (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
  65.         (tp)->iss
  66.  
  67. #define    TCP_ISSINCR    (125*1024)    /* increment for tcp_iss each second */
  68.  
  69. #ifdef KERNEL
  70. tcp_seq    tcp_iss;        /* tcp initial send seq # */
  71. #endif
  72.  
  73. #endif _TCP_SEQ
  74. @
  75.  
  76.  
  77. 1.1
  78. log
  79. @Initial revision
  80. @
  81. text
  82. @d15 3
  83. d45 2
  84. @
  85.